=================================================
    folderHorizon * syncRelease              v0.3
    Utility to synchronize releases
    with remote hosts via FTP/SFTP
=================================================

Requirements
* folderHorizon version 1.3
* folderHorizon released (or joined release) archive/s
* An FTP or SFTP account

Notes
* Support for "multi release" connections
* It uses archive/logrelease.json file for synchronization
  (never delete or modify this file)


=================================================

First run
syncRelease creates the folder 'connections' and the themplate connection JSON file.
Edit it with your data:

{
	"LocalReleasePath": "",
	"ConnectionType": "FTP",
	"Host": "",
	"Port": 21,
	"Username": "",
	"Password": "",
	"RemotetDirectory": ""
}

Data description:

{
	"LocalReleasePath": "Set the full path to release directory (Windows requires double \\ separators)",
	"ConnectionType": "You choose FTP or SFTP and the file name on creating connection",
	"Host": "Your host",
	"Port": 21 is for FTP, 22 for SFTP... set on creation,
	"Username": "Your username",
	"Password": "Your password",
	"RemotetDirectory": "The remote upload directory name depends on the server configuration (it could be an empty string)"
}

Data example Windows:
{
	"LocalReleasePath": "C:\\Users\\YourName\\Documents\\folderHorizonWorks\\Releases\\My Archive",
	"ConnectionType": "FTP",
	"Host": "myarchivewebsite.com",
	"Port": 21,
	"Username": "nadaludd",
	"Password": "mylonglonglongandsimplepassword",
	"RemotetDirectory": "www/"
}
